-
Notifications
You must be signed in to change notification settings - Fork 59
Password Strength Checker in C++ #361
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
|
||
If Password is 6-chacter long with uppercase or Lowercase and special character then it is Moderate | ||
|
||
otherwise its Weak |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add sample use case or example
@@ -0,0 +1,36 @@ | |||
#include <iostream> | |||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Remove all extra spaces
|
||
using namespace std; | ||
|
||
void CheckPassword(string& input) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add proper comments
If Password is 8-character long and have uppercase, lowercase , digit and special character then it is Strong | ||
|
||
If Password is 6-chacter long with uppercase or Lowercase and special character then it is Moderate | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add time and space complexity
Please squash the commits |
@japneetbhatia do not send a pull request from the main branch, Create another branch and send pr from that branch. Read contribution guidelines for more details. |
Ok @tejan-singh @yashaswibiyahut I'll correct this by today |
Your checklist for this pull request
Parent issue: #299
Type of change
Select all that applies:
Checklist:
❤️ Thank you!